Issue #42 | DeltaTable: versioned tables#46
Issue #42 | DeltaTable: versioned tables#46IceKhan13 wants to merge 1 commit intoneuralinkcorp:mainfrom
Conversation
|
@houqp request reviews here as well. Thanks! |
|
this can be a bit confusing for delta tables because delta tables themselves have the native concept of versions. @IceKhan13 what's the use-case you have in mind? is this abstraction created to group multiple delta tables that are logically related? |
|
@houqp to be honest, I was just going through open issues and opened up PRs with possible solutions. In my mind #42 ask was to support version for tables in general. From the issue:
Yes, to me #42 sounded like this IMO #42 might not even be needed. If one needs table of any backend with specific version them can just create 2 separate tables. Let me know if I should close this as not needed or maybe clarify a bit more #42. Thanks! |
Summary
Adds support for versions for DeltaTable.
Details
Versions are supported via
VersionedTableProtocol. For different tables versions would mean different things. For example for DeltaTable it will be combination of uri and schema. This PR implements versions for DeltaTable as per original issue request.Example
Closes #42